home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / glibc-1.09 / glibc-1 / glibc-1.09.1 / manual / examples / atexit.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-18  |  158 b   |  16 lines

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. void 
  5. bye (void)
  6. {
  7.   puts ("Goodbye, cruel world....");
  8. }
  9.  
  10. int
  11. main (void)
  12. {
  13.   atexit (bye);
  14.   exit (EXIT_SUCCESS);
  15. }
  16.